home *** CD-ROM | disk | FTP | other *** search
/ Whiteline: Alpha / Whiteline Alpha.iso / progtool / c / gcc / crssrc16.zoo / src / curses.ext < prev    next >
Encoding:
Text File  |  1991-09-27  |  962 b   |  42 lines

  1. /*
  2.  * Copyright (c) 1981 Regents of the University of California.
  3.  * All rights reserved.
  4.  *
  5.  * Redistribution and use in source and binary forms are permitted
  6.  * provided that this notice is preserved and that due credit is given
  7.  * to the University of California at Berkeley. The name of the University
  8.  * may not be used to endorse or promote products derived from this
  9.  * software without specific prior written permission. This software
  10.  * is provided ``as is'' without express or implied warranty.
  11.  *
  12.  *    @(#)curses.ext    5.4 (Berkeley) 6/8/88
  13.  */
  14.  
  15. /*
  16.  * External variables for the curses library
  17.  */
  18.  
  19. /* LINTLIBRARY */
  20.  
  21. # include    "curses.h"
  22.  
  23. extern bool    _echoit, _rawmode, My_term, _endwin;
  24.  
  25. extern char    ttytype[50], *_unctrl[];
  26.  
  27. extern int    _tty_ch, LINES, COLS;
  28.  
  29. extern SGTTY    _tty;
  30.  
  31. #ifdef DEBUG
  32. __EXTERN int        _putchar __PROTO((int c, FILE *f));
  33. #else
  34. __EXTERN int        _fputchar __PROTO((int c));
  35. #endif
  36.  
  37. #ifdef DEBUG
  38. # define    outf    _outf
  39.  
  40. FILE        *outf;
  41. #endif
  42.